home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 July: Mac OS SDK / Dev.CD Jul 00 SDK2.toast / Development Kits / Hardware / Mac OS USB DDK / Mac OS USB DDK 1.4.1 / Examples / USBModem / ModemStub.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-04-25  |  1.2 KB  |  37 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        ModemStub.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                xxx put dri here xxx
  13.  
  14.         Other Contact:        xxx put other contact here xxx
  15.  
  16.         Technology:            xxx put technology here xxx
  17.  
  18. */
  19.  
  20. #ifndef    _MODEMSTUB_
  21. #define    _MODEMSTUB_
  22.  
  23. /********************************************************************************************/
  24. //
  25. //    Prototypes
  26. //
  27. /********************************************************************************************/
  28.  
  29. static OSStatus modemDriverValidateHW(USBDeviceRef device, USBDeviceDescriptor *desc);
  30. static OSStatus modemDriverInitInterface(UInt32 interfaceNum, USBInterfaceDescriptor *interfaceDesc, USBDeviceDescriptor *deviceDesc, USBDeviceRef device);
  31. static OSStatus modemDriverInitialize(USBDeviceRef device, USBDeviceDescriptorPtr pDesc, UInt32 busPowerAvailable);
  32. static OSStatus modemDriverFinalize(USBDeviceRef device, USBDeviceDescriptorPtr pDesc);
  33. static OSStatus ExpertEntryProc(ExpertNotificationProcPtr pExpertNotify);
  34. static OSStatus    modemDriverNotifyProc(UInt32 notification, void *pointer, UInt32 refcon);
  35.  
  36. #endif
  37.